home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Input / ALSAMidiIn.C next >
C/C++ Source or Header  |  2005-03-14  |  3KB  |  97 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   ALSAMidiIn.C - Midi input for ALSA (this creates an ALSA virtual port)
  5.   Copyright (C) 2002-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #include "ALSAMidiIn.h"
  24. #include <stdlib.h>
  25. #include <stdio.h>
  26.  
  27.  
  28. ALSAMidiIn::ALSAMidiIn(){
  29.     int alsaport;
  30.     inputok=0;
  31.     char portname[50];
  32.     sprintf(portname,"ZynAddSubFX");
  33.  
  34.     midi_handle=NULL;
  35.     
  36.     if (snd_seq_open(&midi_handle,"default",SND_SEQ_OPEN_INPUT,0)!=0) return;
  37.     
  38.     snd_seq_set_client_name(midi_handle,"ZynAddSubFX");//thanks to Frank Neumann
  39.  
  40.     alsaport = snd_seq_create_simple_port(midi_handle,portname
  41.             ,SND_SEQ_PORT_CAP_WRITE | SND_SEQ_PORT_CAP_SUBS_WRITE
  42.         ,SND_SEQ_PORT_TYPE_SYNTH);
  43.     if (alsaport<0) return;
  44.  
  45.     inputok=1;
  46. };
  47.  
  48. ALSAMidiIn::~ALSAMidiIn(){
  49.     snd_seq_close(midi_handle);
  50. };
  51.  
  52.  
  53. /*
  54.  * Get the midi command,channel and parameters
  55.  */
  56. void ALSAMidiIn::getmidicmd(MidiCmdType &cmdtype,unsigned char &cmdchan,int *cmdparams){
  57.     snd_seq_event_t *midievent=NULL;
  58.     cmdtype=MidiNull;
  59.  
  60.     if (inputok==0){
  61.     return;
  62.     };
  63.     
  64.     snd_seq_event_input(midi_handle,&midievent);
  65.     
  66.     if (midievent==NULL) return;
  67.     switch (midievent->type){
  68.     case SND_SEQ_EVENT_NOTEON:  
  69.         cmdtype=MidiNoteON;
  70.         cmdchan=midievent->data.note.channel;
  71.         cmdparams[0]=midievent->data.note.note;
  72.         cmdparams[1]=midievent->data.note.velocity;
  73.         break;
  74.     case SND_SEQ_EVENT_NOTEOFF: 
  75.         cmdtype=MidiNoteOFF;
  76.         cmdchan=midievent->data.note.channel;
  77.         cmdparams[0]=midievent->data.note.note;
  78.         break;
  79.     case SND_SEQ_EVENT_PITCHBEND:
  80.         cmdtype=MidiController;
  81.         cmdchan=midievent->data.control.channel;
  82.         cmdparams[0]=C_pitchwheel;//Pitch Bend
  83.         cmdparams[1]=midievent->data.control.value;
  84.         break;
  85.     case SND_SEQ_EVENT_CONTROLLER:
  86.         cmdtype=MidiController;
  87.         cmdchan=midievent->data.control.channel;
  88.         cmdparams[0]=getcontroller(midievent->data.control.param);
  89.         cmdparams[1]=midievent->data.control.value;
  90.                 //fprintf(stderr,"t=%d val=%d\n",midievent->data.control.param,midievent->data.control.value);
  91.         break;
  92.                     
  93.     };
  94. };
  95.  
  96.  
  97.